/*
 *
 *		STYLE.CSS
 *
 *	+ TYPOGRAPHY
 * 	+ HEADLINE
 *	+ ALERTS
 *	+ LISTS
 *	+ BUTTONS 
 *	+ GOOGLE MAPS
 * 	+ SOCIAL MEDIA
 *	+ PIE CHARTS
 *	+ PROGRESS BARS
 * 	+ COUNTERS
 * 	+ COUNTDOWN
 *	+ CONTACT FORM
 *	+ NEWSLETTER
 * 	+ FULL SECTIONS
 * 	+ VIDEO PLAYER
 *	+ SLIDERS
 *	+ FANCYBOX
 *	+ HEADER TOP
 *	+ HEADER
 *	 - LOGO
 *	 - MENU
 *	 - STICKY HEADER
 *	+ PAGE CONTENT
 *	+ FOOTER
 */


/***********************************************************************************
 *	+ TYPOGRAPHY
 ***********************************************************************************/

body {
    font: 300 15px/26px "Roboto", sans-serif;
    background-color: #fff;
    color: #757575;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #acc3c3;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

h1 {
    margin-bottom: 14px;
    font-size: 48px;
    line-height: 62px;
}

h2 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 48px;
}

h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 38px;
}

h4 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 32px;
}

h5 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 28px;
}

h6 {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 24px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #acc3c3;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #6984f1;
    text-decoration: none;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    color: inherit;
    font-size: 85%;
}

p {
    margin-bottom: 20px;
}


/* LINKS */

a {
    color: #6984f1;
}

a:hover,
a:focus {
    outline: 0;
    color: #6984f1;
}


/* IMAGES */

img {
    max-width: 100%;
    height: auto;
}


/* ADDRESS */

address {
    line-height: inherit;
}


/* FORMS */

input,
select,
textarea {
    display: block;
    max-width: 100%;
    height: 50px;
    padding: 5px 10px;
    margin-bottom: 20px;
    border: 1px solid #d7d7d7;
    background-color: #fff;
    color: #757575;
}

label {
    font-weight: normal;
}

select {
    width: 100%;
    height: 50px;
}

textarea {
    height: 255px;
    resize: none;
}

input[class^="col-"],
select[class^="col-"],
textarea[class^="col-"] {
    padding: 10px 20px;
}

textarea:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="month"]:focus,
input[type="text"]:focus,
input[type="color"]:focus,
input[type="email"]:focus,
input[type="image"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus {
    border-color: #6984f1;
    box-shadow: none;
    outline: 0;
}

select:focus {
    outline: none;
}

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    margin-top: 7px;
}

.checkbox input[type="checkbox"]:focus,
.checkbox-inline input[type="checkbox"]:focus,
.radio input[type="radio"]:focus,
.radio-inline input[type="radio"]:focus {
    outline: none;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
    padding: 10px 30px;
    border: none;
    background-color: #000;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #6984f1;
}

button,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
    box-shadow: none;
    outline: 0;
}

::-moz-placeholder {
    color: #c3c3c3;
    font-size: 13px;
    font-style: italic;
}

::-webkit-input-placeholder {
    color: #c3c3c3;
    font-size: 13px;
    font-style: italic;
}

:-ms-input-placeholder {
    color: #c3c3c3;
    font-size: 13px;
    font-style: italic;
}


/* TRANFORMATION CLASSES */

.text-mute {
    color: #b4b4b4;
}

.text-default-color {
    color: #00ddf7;
}

.text-highlight {
    padding: 10px 15px;
    background-color: #00ddf7;
    color: #fff;
}

.dropcap {
    float: left;
    font-family: "Poppins", serif;
    font-size: 36px;
    line-height: 58px;
    font-weight: 700;
    margin-right: 10px;
}

.bluring {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.last,
.no-margin-bottom {
    margin-bottom: 0 !important;
}


/* ALING CLASSES */

.text-xs-left {
    text-align: left !important;
}

.text-xs-right {
    text-align: right !important;
}

.text-xs-center {
    text-align: center !important;
}

@media (min-width: 768px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .last {
        margin-bottom: 20px !important;
    }
}


/***********************************************************************************
 *	+ HEADLINE
 ***********************************************************************************/

.headline {
    margin-bottom: 100px;
}

.headline h2 {
    margin-bottom: 0;
}

.headline p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 30px;
}


/***********************************************************************************
 *	+ ALERTS
 ***********************************************************************************/

.alert {
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.alert.alert-info {
    background-color: #757575;
}

.alert.alert-danger {
    background-color: #fa4840;
}

.alert.alert-success {
    background-color: #6984f1;
}

.alert.alert-warning {
    background-color: #efb400;
}


/***********************************************************************************
 *	+ LISTS
 ***********************************************************************************/


/* GENERAL */

ul,
ol {
    padding: 0;
    list-style-position: inside;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 20px;
}

dl {
    margin-bottom: 20px;
}


/* CONTACT LIST */

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list a {
    color: inherit;
}

.contact-list li i {
    margin-right: 5px;
}


/***********************************************************************************
 *	+ BUTTONS
 ***********************************************************************************/

.btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    margin: 0 5px 20px 0;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn+.btn {
    margin-left: 15px;
}

.btn:focus,
.btn:active {
    outline: 0 !important;
    box-shadow: none;
}

.btn:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    content: "";
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.btn i {
    margin-left: 5px;
}

.btn:hover:before {
    width: 100%;
    height: 100%;
}

.btn-xs {
    padding: 10px 25px;
    font-size: 13px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}


/* DEFAULT BUTTON */

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default:active:focus {
    background-color: #6984f1;
    color: #fff;
}

.btn-default:before {
    background-color: #acc3c3;
}


/* BLACK BUTTON */

.btn-black,
.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black:active:focus {
    background-color: #acc3c3;
    color: #fff;
}

.btn-black:before {
    background-color: #6984f1;
}


/* WHITE BUTTON */

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white:active:focus {
    border: 1px solid #6984f1;
    background-color: #fff;
    color: #6984f1;
}

.btn-white:before {
    background-color: #6984f1;
}

.btn-white:hover {
    color: #fff;
}


/***********************************************************************************
 *	+ GOOGLE MAPS
 ***********************************************************************************/

.map {
    height: 300px;
    margin-bottom: 50px;
}

.map img {
    max-width: none;
}

@media (max-width: 767px) {
    .map {
        height: 400px !important;
    }
}


/***********************************************************************************
 *	+ SOCIAL MEDIA
 ***********************************************************************************/

.social-media {
    margin-top: -5px;
    margin-bottom: 20px;
}

.social-media a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #757575;
    border-radius: 50%;
    margin: 5px 10px 5px 0;
    color: #757575;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.social-media a:last-child {
    margin-right: 0;
}

.social-media a.facebook:hover {
    color: #0e59a0 !important;
    border-color: #0e59a0 !important;
}

.social-media a.twitter:hover {
    color: #0ea4ff !important;
    border-color: #0ea4ff !important;
}

.social-media a.dribbble:hover {
    color: #ea73a0 !important;
    border-color: #ea73a0 !important;
}

.social-media a.pinterest:hover {
    color: #d73532 !important;
    border-color: #d73532 !important;
}

.social-media a.google:hover {
    color: #da4835 !important;
    border-color: #da4835 !important;
}

.social-media a.tumblr:hover {
    color: #2a445f !important;
    border-color: #2a445f !important;
}

.social-media a.instagram:hover {
    color: #82685a !important;
    border-color: #82685a !important;
}

.social-media a.rss:hover {
    color: #f79638 !important;
    border-color: #f79638 !important;
}

.social-media a.linkedin:hover {
    color: #018faf !important;
    border-color: #018faf !important;
}

.social-media a.skype:hover {
    color: #00b0f6 !important;
    border-color: #00b0f6 !important;
}

.social-media a.flickr:hover {
    color: #0061db !important;
    border-color: #0061db !important;
}

.social-media a.vimeo:hover {
    color: #4cb2d9 !important;
    border-color: #4cb2d9 !important;
}

.social-media a.github:hover {
    color: #3b3b3b !important;
    border-color: #3b3b3b !important;
}

.social-media a.youtube:hover {
    color: #cc181e !important;
    border-color: #cc181e !important;
}

.social-media a.windows:hover {
    color: #6dc2e9 !important;
    border-color: #6dc2e9 !important;
}

.social-media a.dropbox:hover {
    color: #007ee5 !important;
    border-color: #007ee5 !important;
}

.social-media a.xing:hover {
    color: #026566 !important;
    border-color: #026566 !important;
}

.social-media a.adn:hover {
    color: #1ea076 !important;
    border-color: #1ea076 !important;
}

.social-media a.android:hover {
    color: #98cb02 !important;
    border-color: #98cb02 !important;
}

.social-media a.apple:hover {
    color: #a6b1b7 !important;
    border-color: #a6b1b7 !important;
}

.social-media a.behance:hover {
    color: #2d9ad2 !important;
    border-color: #2d9ad2 !important;
}

.social-media a.bitbucket:hover {
    color: #214f81 !important;
    border-color: #214f81 !important;
}

.social-media a.bitcoin:hover {
    color: #f7931b !important;
    border-color: #f7931b !important;
}

.social-media a.codepan:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.css3:hover {
    color: #3289ce !important;
    border-color: #3289ce !important;
}

.social-media a.delicious:hover {
    color: #3399fe !important;
    border-color: #3399fe !important;
}

.social-media a.deviantart:hover {
    color: #c8da30 !important;
    border-color: #c8da30 !important;
}

.social-media a.digg:hover {
    color: #0080c2 !important;
    border-color: #0080c2 !important;
}

.social-media a.drupal:hover {
    color: #0077b9 !important;
    border-color: #0077b9 !important;
}

.social-media a.empire:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.foursquare:hover {
    color: #daecb0 !important;
    border-color: #daecb0 !important;
}

.social-media a.git:hover {
    color: #f34f29 !important;
    border-color: #f34f29 !important;
}

.social-media a.gitti:hover {
    color: #634c3e !important;
    border-color: #634c3e !important;
}

.social-media a.hacker-news:hover {
    color: #f18642 !important;
    border-color: #f18642 !important;
}

.social-media a.html5:hover {
    color: #e54c1f !important;
    border-color: #e54c1f !important;
}

.social-media a.joomla:hover {
    color: #016fb9 !important;
    border-color: #016fb9 !important;
}

.social-media a.jsfiddle:hover {
    color: #4679a4 !important;
    border-color: #4679a4 !important;
}

.social-media a.linux:hover {
    color: #fece0e !important;
    border-color: #fece0e !important;
}

.social-media a.maxcdn:hover {
    color: #f36f20 !important;
    border-color: #f36f20 !important;
}

.social-media a.openid:hover {
    color: #fe6101 !important;
    border-color: #fe6101 !important;
}

.social-media a.pagelines:hover {
    color: #3783e3 !important;
    border-color: #3783e3 !important;
}

.social-media a.pied-piper:hover {
    color: #0c7b48 !important;
    border-color: #0c7b48 !important;
}

.social-media a.qq:hover {
    color: #23286c !important;
    border-color: #23286c !important;
}

.social-media a.rebel:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.reddit:hover {
    color: #cee3f8 !important;
    border-color: #cee3f8 !important;
}

.social-media a.renren:hover {
    color: #0d81e4 !important;
    border-color: #0d81e4 !important;
}

.social-media a.share:hover {
    color: #252525 !important;
    border-color: #252525 !important;
}

.social-media a.slack:hover {
    color: #453744 !important;
    border-color: #453744 !important;
}

.social-media a.soundcloud:hover {
    color: #fe4e00 !important;
    border-color: #fe4e00 !important;
}

.social-media a.spotify:hover {
    color: #80bb41 !important;
    border-color: #80bb41 !important;
}

.social-media a.stack-exchange:hover {
    color: #265a93 !important;
    border-color: #265a93 !important;
}

.social-media a.stackoverflow:hover {
    color: #fea501 !important;
    border-color: #fea501 !important;
}

.social-media a.steam:hover {
    color: #191919 !important;
    border-color: #191919 !important;
}

.social-media a.stumbleupon:hover {
    color: #f04f23 !important;
    border-color: #f04f23 !important;
}

.social-media a.tencent-weibo:hover {
    color: #0063a7 !important;
    border-color: #0063a7 !important;
}

.social-media a.trello:hover {
    color: #226784 !important;
    border-color: #226784 !important;
}

.social-media a.vine:hover {
    color: #00b081 !important;
    border-color: #00b081 !important;
}

.social-media a.vk:hover {
    color: #50769d !important;
    border-color: #50769d !important;
}

.social-media a.wechat:hover {
    color: #a4dc31 !important;
    border-color: #a4dc31 !important;
}

.social-media a.weibo:hover {
    color: #d82828 !important;
    border-color: #d82828 !important;
}

.social-media a.wordpress:hover {
    color: #454442 !important;
    border-color: #454442 !important;
}

.social-media a.yahoo:hover {
    color: #4b04a8 !important;
    border-color: #4b04a8 !important;
}

.social-media a.ftpx:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.amazon:hover {
    color: #ff9900 !important;
    border-color: #ff9900 !important;
}

.social-media a.angellist:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.btc:hover {
    color: #f7931b !important;
    border-color: #f7931b !important;
}

.social-media a.black-tie:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.bluetooth:hover {
    color: #0a3d91 !important;
    border-color: #0a3d91 !important;
}

.social-media a.buysellads:hover {
    color: #ba0202 !important;
    border-color: #ba0202 !important;
}

.social-media a.cc-amex:hover {
    color: #016dd2 !important;
    border-color: #016dd2 !important;
}

.social-media a.cc-diners-club:hover {
    color: #0069aa !important;
    border-color: #0069aa !important;
}

.social-media a.cc-discover:hover {
    color: #f88737 !important;
    border-color: #f88737 !important;
}

.social-media a.cc-jcb:hover {
    color: #29166f !important;
    border-color: #29166f !important;
}

.social-media a.cc-mastercard:hover {
    color: #fe9611 !important;
    border-color: #fe9611 !important;
}

.social-media a.paypal:hover {
    color: #012069 !important;
    border-color: #012069 !important;
}

.social-media a.cc-stripe:hover {
    color: #49b802 !important;
    border-color: #49b802 !important;
}

.social-media a.cc-visa:hover {
    color: #1b4da2 !important;
    border-color: #1b4da2 !important;
}

.social-media a.chrome:hover {
    color: #edcd16 !important;
    border-color: #edcd16 !important;
}

.social-media a.codepen:hover {
    color: #1b1c1b !important;
    border-color: #1b1c1b !important;
}

.social-media a.codiepie:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.connectdevelop:hover {
    color: #023cb0 !important;
    border-color: #023cb0 !important;
}

.social-media a.contao:hover {
    color: #e4790f !important;
    border-color: #e4790f !important;
}

.social-media a.dashcube:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.edge:hover {
    color: #2c74be !important;
    border-color: #2c74be !important;
}

.social-media a.expeditedssl:hover {
    color: #2e2e2e !important;
    border-color: #2e2e2e !important;
}

.social-media a.firefox:hover {
    color: #df731b !important;
    border-color: #df731b !important;
}

.social-media a.fonticons:hover {
    color: #1d1e2a !important;
    border-color: #1d1e2a !important;
}

.social-media a.fort-awesome:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.forumbee:hover {
    color: #85ac2f !important;
    border-color: #85ac2f !important;
}

.social-media a.get-pocket:hover {
    color: #e84352 !important;
    border-color: #e84352 !important;
}

.social-media a.gg:hover {
    color: #fd0002 !important;
    border-color: #fd0002 !important;
}

.social-media a.gratipay:hover {
    color: #653614 !important;
    border-color: #653614 !important;
}

.social-media a.houzz:hover {
    color: #9bc545 !important;
    border-color: #9bc545 !important;
}

.social-media a.internet-explorer:hover {
    color: #00bcf2 !important;
    border-color: #00bcf2 !important;
}

.social-media a.ioxhost:hover {
    color: #f6a814 !important;
    border-color: #f6a814 !important;
}

.social-media a.lastfm:hover {
    color: #e2152b !important;
    border-color: #e2152b !important;
}

.social-media a.leanpub:hover {
    color: #231f20 !important;
    border-color: #231f20 !important;
}

.social-media a.meanpath:hover {
    color: #538dd6 !important;
    border-color: #538dd6 !important;
}

.social-media a.medium:hover {
    color: #00ab6c !important;
    border-color: #00ab6c !important;
}

.social-media a.mixcloud:hover {
    color: #040204 !important;
    border-color: #040204 !important;
}

.social-media a.modx:hover {
    color: #8ed547 !important;
    border-color: #8ed547 !important;
}

.social-media a.odnoklassniki:hover {
    color: #f68634 !important;
    border-color: #f68634 !important;
}

.social-media a.opencart:hover {
    color: #00c1f2 !important;
    border-color: #00c1f2 !important;
}

.social-media a.opera:hover {
    color: #e81617 !important;
    border-color: #e81617 !important;
}

.social-media a.optin-monster:hover {
    color: #8ed31e !important;
    border-color: #8ed31e !important;
}

.social-media a.product-hunt:hover {
    color: #d6573d !important;
    border-color: #d6573d !important;
}

.social-media a.reddit:hover {
    color: #ff4500 !important;
    border-color: #ff4500 !important;
}

.social-media a.safari:hover {
    color: #2973d9 !important;
    border-color: #2973d9 !important;
}

.social-media a.scribd:hover {
    color: #382d29 !important;
    border-color: #382d29 !important;
}

.social-media a.sellsy:hover {
    color: #006ca2 !important;
    border-color: #006ca2 !important;
}

.social-media a.shirtsinbulk:hover {
    color: #dd3a26 !important;
    border-color: #dd3a26 !important;
}

.social-media a.simplybuilt:hover {
    color: #322f34 !important;
    border-color: #322f34 !important;
}

.social-media a.skyatlas:hover {
    color: #01aebe !important;
    border-color: #01aebe !important;
}

.social-media a.slideshare:hover {
    color: #13999a !important;
    border-color: #13999a !important;
}

.social-media a.stack-overflow:hover {
    color: #ef532a !important;
    border-color: #ef532a !important;
}

.social-media a.tripadvisor:hover {
    color: #1e892f !important;
    border-color: #1e892f !important;
}

.social-media a.twitch:hover {
    color: #6441a5 !important;
    border-color: #6441a5 !important;
}

.social-media a.usb:hover {
    color: #000 !important;
    border-color: #000 !important;
}

.social-media a.viacoin:hover {
    color: #2376a2 !important;
    border-color: #2376a2 !important;
}

.social-media a.whatsapp:hover {
    color: #44c254 !important;
    border-color: #44c254 !important;
}

.social-media a.wikipedia:hover {
    color: #0c0c0c !important;
    border-color: #0c0c0c !important;
}

.social-media a.y-combinator:hover {
    color: #ff6501 !important;
    border-color: #ff6501 !important;
}

.social-media a.yelp:hover {
    color: #bf311b !important;
    border-color: #bf311b !important;
}

.social-media a.email:hover {
    color: #689c49 !important;
    border-color: #689c49 !important;
}

.social-media a.envira:hover {
    color: #75bd3b !important;
    border-color: #75bd3b !important;
}

.social-media a.gitlab:hover {
    color: #e24329 !important;
    border-color: #e24329 !important;
}

.social-media a.glide:hover {
    color: #00a7ff !important;
    border-color: #00a7ff !important;
}

.social-media a.snapchat:hover {
    color: #efe200 !important;
    border-color: #efe200 !important;
}

.social-media a.viadeo:hover {
    color: #f4982b !important;
    border-color: #f4982b !important;
}

.social-media a.wpbeginner:hover {
    color: #ff6600 !important;
    border-color: #ff6600 !important;
}

.social-media a.wpforms:hover {
    color: #b6581a !important;
    border-color: #b6581a !important;
}


/* DEFAULT COLOR */

.social-media.default-color a:hover {
    color: #6984f1 !important;
    border-color: #6984f1 !important;
}


/***********************************************************************************
 *	+ PIE CHARTS
 ***********************************************************************************/

.pie-chart-container {
    margin-bottom: 50px;
    text-align: center;
}

.pie-chart {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}

.pie-chart canvas {
    max-width: 100%;
}

.pie-chart-percent {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #acc3c3;
    font-size: 36px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pie-chart-details {}


/***********************************************************************************
 *	+ PROGRESS BARS
 ***********************************************************************************/

.progress {
    overflow: visible;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 20px;
    background-color: #f2f2f2;
    box-shadow: none;
}

.progress-bar {
    position: relative;
    border-radius: 2px;
    background-color: #6984f1;
    box-shadow: none;
}

.progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    color: #757575;
    font-size: 12px;
}

.progress-bar-title {
    margin-bottom: 10px;
    color: #acc3c3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/***********************************************************************************
 *	+ COUNTER
 ***********************************************************************************/

.counter {
    margin-bottom: 50px;
    text-align: center;
}

.counter-value {
    color: #acc3c3;
    font: 600 48px/48px "Poppins", sans-serif;
}

.counter-details {}


/***********************************************************************************
 *	+ COUNTDOWN
 ***********************************************************************************/

.countdown {
    margin: 50px 0;
}

.countdown>div {
    position: relative;
    float: left;
    width: 25%;
    text-align: center;
}

.countdown>div>span {
    display: block;
}

.countdown:after {
    display: table;
    content: " ";
    clear: both;
}


/* STYLE 1 */

.countdown.style-1 {}

.countdown.style-1>div {
    color: #acc3c3;
    font: 600 64px/64px "Poppins", sans-serif;
}

.countdown.style-1>div>span {
    margin-top: 10px;
    font: 400 18px/32px "Roboto", sans-serif;
    text-transform: uppercase;
}


/* STYLE 2 */

.countdown.style-2 {}

.countdown.style-2>div {
    position: relative;
    color: #acc3c3;
    font: 600 64px/64px "Poppins", sans-serif;
}

.countdown.style-2>div:after {
    position: absolute;
    top: 0;
    right: 0;
    content: ":";
}

.countdown.style-2>div:last-child:after {
    display: none;
}

.countdown.style-2>div>span {
    margin-top: 10px;
    color: #6984f1;
    font: 400 18px/32px "Roboto", sans-serif;
}


/* STYLE 3 */

.countdown.style-3 {}

.countdown.style-3>div {
    position: relative;
    color: #acc3c3;
    font: 600 64px/64px "Poppins", sans-serif;
}

.countdown.style-3>div:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 5px;
    border-right: 2px solid #acc3c3;
    content: "";
}

.countdown.style-3>div:last-child:after {
    display: none;
}

.countdown.style-3>div>span {
    margin-top: 10px;
    color: #6984f1;
    font: 400 18px/32px "Roboto", sans-serif;
}


/* STYLE 4 */

.countdown.style-4 {}

.countdown.style-4 .count {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border: 3px solid #6984f1;
    border-radius: 50%;
    color: #acc3c3;
    font: 600 48px/150px "Poppins", sans-serif;
}

.countdown.style-4>div>span {
    color: #acc3c3;
    font: 700 16px/32px "Roboto", sans-serif;
}


/* STYLE 5 */

.countdown.style-5 {}

.countdown.style-5 .count {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #6984f1;
    color: #fff;
    font: 600 36px/130px "Poppins", sans-serif;
}

.countdown.style-5>div>span {
    position: absolute;
    bottom: 37px;
    left: 0;
    width: 100%;
    color: #acc3c3;
    font: 700 16px/32px "Roboto", sans-serif;
    text-align: center;
}


/* STYLE 6 */

.countdown.style-6 {}

.countdown.style-6 .count {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background-color: #fff;
    color: #6984f1;
    font: 600 48px/156px "Poppins", sans-serif;
    box-shadow: 0 3px 27px 0px rgba(0, 0, 0, 0.21);
}

.countdown.style-6>div>span {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    color: #acc3c3;
    font: 700 16px/32px "Roboto", sans-serif;
    text-align: center;
}


/* STYLE 7 */

.countdown.style-7 {
    margin: 100px 0;
}

.countdown.style-7 .count {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    color: #acc3c3;
    font: 600 36px/130px "Poppins", sans-serif;
}

.countdown.style-7 .count:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    border: 2px solid #acc3c3;
    content: "";
    transform: rotate(45deg);
}

.countdown.style-7>div>span {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    color: #6984f1;
    font: 700 16px/32px "Roboto", sans-serif;
    text-align: center;
}

@media (max-width: 767px) {
    .countdown>div {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
    .countdown>div:last-child {
        margin-bottom: 0;
    }
    .countdown.style-3>div:after {
        display: none;
    }
}


/***********************************************************************************
 *	+ CONTACT FORM
 ***********************************************************************************/

#contact-form {
    margin-bottom: 50px;
}

#contact-form label {
    display: block;
}

#contact-form label.error {
    margin-bottom: 10px;
    color: #f30d39;
}

#contact-form textarea,
#contact-form input[type="text"],
#contact-form input[type="email"] {}

#contact-form button[type="submit"] {
    margin-top: 20px;
    margin-bottom: 0;
}


/***********************************************************************************
 *	+ NEWSLETTER
 ***********************************************************************************/

.newsletter {
    position: relative;
}

.newsletter #newsletter-email {
    width: 100%;
    height: 45px;
    padding-right: 160px;
    margin-bottom: 0;
}

.newsletter button[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1px;
}

@media (max-width: 767px) {
    .newsletter #newsletter-email {
        padding-right: 20px;
        margin-bottom: 10px;
    }
    .newsletter button[type="submit"] {
        position: relative;
        width: 100%;
        margin-right: 0;
    }
}


/***********************************************************************************
 *	+ FULL SECTIONS
 ***********************************************************************************/

.full-section {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    background: no-repeat center center;
}

.full-section-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
}

.full-section-container {
    position: relative;
    z-index: 3;
}


/* FULL SCREEN */

.full-screen {}

.full-screen .full-section-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* PARALLAX */

.parallax {
    background-attachment: fixed;
    -webkit-background-size: cover !important;
    background-size: cover !important;
}

.parallax.parallax-disable {
    background-attachment: scroll;
}


/* ELEMENTS IN DARK SECTION */

.full-section.dark-section {
    background-color: #000;
    color: #fff;
}

.full-section.dark-section h1,
.full-section.dark-section h2,
.full-section.dark-section h3,
.full-section.dark-section h4,
.full-section.dark-section h5,
.full-section.dark-section h6,
.full-section.dark-section h1 a,
.full-section.dark-section h2 a,
.full-section.dark-section h3 a,
.full-section.dark-section h4 a,
.full-section.dark-section h5 a,
.full-section.dark-section h6 a {
    color: inherit;
}

.full-section.dark-section a:hover {
    color: #6984f1;
}

.full-section.dark-section .btn:hover {
    color: #fff;
}

.full-section.dark-section .btn-white {
    border: none;
}

.full-section.dark-section .social-media a {
    border-color: inherit;
    color: inherit;
}

.full-section.dark-section .counter-value {
    color: inherit;
}

.full-section.dark-section .progress-bar-title {
    color: inherit;
}

.full-section.dark-section .countdown.style-1>div,
.full-section.dark-section .countdown.style-2>div,
.full-section.dark-section .countdown.style-3>div,
.full-section.dark-section .countdown.style-4 .count,
.full-section.dark-section .countdown.style-4 span,
.full-section.dark-section .countdown.style-7 .count {
    color: inherit;
}

.full-section.dark-section .countdown.style-3>div:after,
.full-section.dark-section .countdown.style-7 .count:after {
    border-color: inherit;
}


/* BACKROUNDS AND STYLE FOR FULL SECTIONS */

#newsletter {
    margin-top: 80px;
    margin-bottom: 100px;
    padding: 100px 0;
    background-image: url(../../images/backgrounds/bg-newsletter.jpg);
}

#newsletter-popup {
    padding: 100px 0 150px;
}

#about-popup,
#contact-popup,
#newsletter-popup {
    display: none;
}

#countdown {
    padding: 50px 0;
    margin-bottom: 0px;
    background: linear-gradient( 0deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 80%)), url(../../images/backgrounds/bg-1.jpg);
}


/*#countdown {
		margin-bottom: -50px;
		background-image: url(../../images/backgrounds/bg-1.jpg);
		-webkit-background-size: cover;
				background-size: cover;
	}
	
	#countdown:after {
		position: absolute;
		z-index: 2;
		top: 0;
		right: 0;
		bottom: 0;
		width: 50%;
		background-color: #fff;
		content: "";
	}
	
	#countdown h4, 
	#countdown .newsletter, 
	#countdown .contact-list,
	#countdown .social-media {
		color: #212121;
	}*/

#countdown .countdown {
    margin-bottom: 0;
}

#team {
    margin-top: 80px;
    margin-bottom: 100px;
    padding: 100px 0;
    background-color: #f7f7f7;
}

#counters {
    padding: 100px 0 50px;
    margin: 80px 0 100px;
    background-image: url(../../images/backgrounds/bg-counters.jpg);
}

@media (max-width: 767px) {
    .full-screen .full-section-container {
        position: relative;
        top: 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    /*#countdown:after {
			top: auto;
			bottom: 0;
			width: 100%;
			height: 40%;
		}
		
		#countdown .countdown {
			margin-bottom: 200px;
		}*/
}


/***********************************************************************************
 *	+ VIDEO PLAYER
 ***********************************************************************************/

#local-video-section,
#youtube-video-section {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
}

#video-section {
    height: 780px;
    padding: 0;
    margin-top: 100px;
    margin-bottom: 0;
}

.youtube-player {
    display: none;
}

#video-section .full-section-container {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.embed-responsive {
    margin-bottom: 20px;
}

#local-video-section video {
    width: 100%;
}


/***********************************************************************************
 *	+ SLIDERS
 ***********************************************************************************/


/* OWL Carousel */

.owl-carousel {
    margin-bottom: 50px;
}

.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #fff;
}

.owl-dot:hover,
.owl-dot.active {
    background-color: #000;
}

.owl-dot:last-child {
    margin-right: 0;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    width: 32px;
    height: 32px;
    background: #fff no-repeat center center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}


/***********************************************************************************
 *	+ FANCYBOX
 ***********************************************************************************/

.fancybox-inner .container {
    max-width: 100%;
}


/***********************************************************************************
 *	+ HEADER TOP
 ***********************************************************************************/

#header-top {
    padding: 10px 0;
    background-color: #6984f1;
    color: #fff;
}

#header-top .social-media {
    margin: 0;
}

#header-top .social-media a {
    width: 26px;
    height: 26px;
    font-size: 12px;
    line-height: 22px;
    border-color: inherit;
    color: inherit;
}

#header-top .contact-list {
    margin-top: 7px;
    margin-bottom: 0;
}

#header-top .contact-list li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

#header-top .contact-list li:last-child {
    margin-right: 0;
}


/***********************************************************************************
 *	+ HEADER
 ***********************************************************************************/

#header {}

#header.header-overlap {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 767px) {
    #header.header-overlap {
        position: relative;
    }
}


/***********************************************************************************
 *	- LOGO
 ***********************************************************************************/

#logo {
    max-width: 100%;
    padding: 20px 0;
}

#logo a {
    display: inline-block;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    #logo {
        text-align: center;
    }
}


/***********************************************************************************
 *	- MENU
 ***********************************************************************************/

.menu {
    float: right;
    margin: 0;
    margin-top: 22px;
    list-style: none;
}

.menu li {
    float: left;
    margin-right: 10px;
}

.menu li:last-child {
    margin-right: 0;
}

.menu li a {
    display: block;
    padding: 20px;
    color: #acc3c3;
    font: 600 14px/30px "Poppins", sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.header-white .menu li a {
    color: #fff;
}

.menu li a:hover,
.menu li.active a {
    color: #6984f1;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background-color: transparent;
}

@media (max-width: 767px) {
    .menu {
        float: none;
        margin-top: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .menu li {
        float: none;
        display: inline-block;
        margin-right: 0;
    }
    .menu li:last-child {
        margin-right: 0;
    }
    .menu li a {
        padding: 5px;
    }
    .header-white .menu li a {
        color: #acc3c3;
    }
    .header-white .menu li a:hover,
    .header-white .menu li.active a {
        color: #6984f1;
    }
}


/***********************************************************************************
 *	- STICKY HEADER
 ***********************************************************************************/

#header-sticky {
    position: fixed;
    z-index: 8000;
    top: 0;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

#header-sticky #logo {
    padding: 10px 0;
}

#header-sticky #logo img {
    max-width: 75%;
}

#header-sticky .menu {
    margin-top: 0;
}

#header-sticky .menu li a {
    padding: 22px 20px 18px;
}

@media (max-width: 767px) {
    #header-sticky {
        visibility: hidden;
    }
}


/***********************************************************************************
 *	+ PAGE CONTENT
 ***********************************************************************************/

#page-content {
    padding-bottom: 0px;
}


/***********************************************************************************
 *	+ FOOTER
 ***********************************************************************************/

#footer {
    padding: 20px 0;
    background-color: #212121;
    color: #fff;
}

#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 {
    color: inherit;
}

#footer .social-media {
    margin: 0;
}

#footer .social-media a {
    border-color: inherit;
    color: inherit;
}

#footer .contact-list {
    margin-top: 10px;
    margin-bottom: 0;
}

#footer .contact-list li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

#footer .contact-list li:last-child {
    margin-right: 0;
}

#footer .newsletter {
    padding-top: 50px;
    padding-bottom: 75px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}